home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c3 / pro21 / source.cfg < prev    next >
Text File  |  1992-10-13  |  3KB  |  138 lines

  1. ; SOURCE.CFG
  2. ; Copyright Rick Maddy 1992.
  3.  
  4. ; This is the default configuration used by SOURCE.  This may be changed
  5. ; in any manner to suit your own needs.  All these values are hardcoded into
  6. ; the SOURCE as the base defaults incase no configuration file can be found.
  7.  
  8. begin Default
  9.  
  10. ; Set tabs to eight spaces.
  11. -t8
  12.  
  13. ; Turn on block tracing.
  14. -b
  15.  
  16. ; Turn on highlighted comments.
  17. -c
  18.  
  19. ; Turn on highlighted keywords.
  20. -k
  21.  
  22. ; Print all lines of file.
  23. -i0
  24. -f0
  25.  
  26. ; Print all pages of file.
  27. -I0
  28. -F0
  29.  
  30. ; Set character pitch to pica - 10 characters per inch.
  31. -pp
  32.  
  33. ; Set page orientation to portrait.
  34. -op
  35.  
  36. ; Set page to single column.
  37. -s1
  38.  
  39. ; Set line spacing to 6 lines per inch.
  40. -l6
  41.  
  42. ; Turn on line numbering.  Set to four digits, padded with zeros, followed
  43. ; by a colon.
  44. -n
  45. -N04:
  46.  
  47. ; Set page header to all pages.
  48. -h2
  49.  
  50. ; Set page header to show the following:
  51. ; File:  filename.ext (mm/dd/yy - hh:mm)  Printed:  mm/dd/yy - hh:mm  Page:  ###
  52. ; where 'File', 'Printed', and 'Page' will be highlighted.
  53. -H"&h+File:&h-  &fn (&fd1/ - &ft2:)&jc&h+Printed:&h-  &cd1/ - &ct2:&jr&h+Page:&h-  &pn03"
  54.  
  55. ; Set header gap to one line between header and first line of text
  56. -w1
  57.  
  58. ; Set banners to print before and after each file.
  59. -B3
  60.  
  61. ; Turn on file stats before printing
  62. -q
  63.  
  64. ; Turn off print verification.
  65. -v-
  66.  
  67. ; Default output to printer port one.
  68. -r lpt1
  69.  
  70. ; Ask what to do when redirected to file and it exists.
  71. -ar
  72.  
  73. ; Turn on printer escape codes.
  74. -e
  75.  
  76. ; Turn off graphic character printing.
  77. -g-
  78.  
  79. ; Turn off sound for prompts and errors
  80. -y-
  81.  
  82. ; Don't print files with the following extensions during wildcard searches
  83. -z ".exe .obj .map .sys .bak .lib"
  84. end
  85.  
  86.  
  87.  
  88. ; This definition is useful for printing to the screen.
  89.  
  90. begin Screen
  91. ; No headers
  92. -h0
  93.  
  94. ; redirect output to the console device (screen)
  95. -r con
  96.  
  97. ; Use the printer definition 'Screen'
  98. -d Screen
  99.  
  100. ; Pica pitch
  101. -pp
  102.  
  103. ; One column
  104. -s1
  105.  
  106. ; Allows escape codes
  107. -e
  108.  
  109. ; Turn on graphics for block tracing
  110. -g
  111.  
  112. ; No banner pages
  113. -B0
  114. end
  115.  
  116.  
  117.  
  118. ; This definition is used to get the most output per page.
  119. ; This assumes you can print compressed landscape, 8 lines per inch.
  120.  
  121. begin Small
  122. ; 8 lines per inch, landscape, compressed pitch, two columns, header every
  123. ; page, no whitespace after header, graphics off
  124. -l8 -ol -pc -s2 -h2 -w0 -g-
  125. end
  126.  
  127.  
  128.  
  129. ; This definition is good for dumping plain text files.  No line numbers
  130. ; are shown.
  131.  
  132. begin Text
  133. ; block tracing off, comments off, escape codes sent, header first page only,
  134. ; 6 lines per inch, no line numbers, portrait, 10 pitch, one column, normal
  135. ; tabs stops
  136. -ar -b- -c- -k- -e -h1 -l6 -n- -op -pp -q- -s1 -t8 -v- -w1
  137. end
  138.